Hệ thống quản lý ISP trong PHP

1 <?php
2
3     
// Start from getting the hader which contains some settings we need
4     require_once
'includes/headx.php';
5
6     
// require the admins class which containes most functions applied to admins
7     require_once
"includes/classes/admin-class.php";
8
9     $admins =
new Admins($dbh);
10
11     $products = $admins->fetchProductionStats();
12     $data = array();
13     
foreach ($products as $product) {
14         $data[] = $product;
15     }
16     
// echo "<pre>";
17     print json_encode($data);
18     
// print_r($data);
19     
// echo "</pre>";
20 ?>


Gõ tìm kiếm nhanh...